home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir39 / exc32.zip / HELP.TXT < prev    next >
Text File  |  1993-09-24  |  5KB  |  81 lines

  1. ;EXC Script Commands - Quick Reference
  2.  
  3. ; Note: Brackets ([]) indicate an optional parameter and should not be
  4. ;       included as part of the command.  Quotes (""), where specified, 
  5. ;       are required to be entered as part of the parameter.
  6.  
  7. ; BEEP                   Sound a short beep on speaker. Useful in debugging
  8. ;                        scripts.
  9. ; CASE ON                The CASE commands enable case-sensitive (ON) or case-
  10. ; CASE OFF               insensitive (OFF) compares by WAITFOR and SEARCH.  The
  11. ;                        initial mode is CASE ON.
  12. ; CLEAR                  Clear the screen.
  13. ; CURSOR col row         Move the cursor to the specified coordinates.
  14. ; DELAY n                Wait n seconds
  15. ; FAST                   Reverses the effect of a previous SLOW command.
  16. ; GOTO label             Unconditional branch to label.
  17. ; IFN label              If condition set to N, go to label.
  18. ; IFY label              If condition set to Y, go to label.
  19. ; INT9                   Reverses the effect of a previous NOINT9 command.
  20. ; HIDEWIN                Restore a window displayed with SHOWIN to it's 
  21. ;                        original color attributes.
  22. ; KEY mnemonic [n]       Push the key onto the keyboard stack. 'n' is the
  23. ;                        number of times you want the keycode inserted.
  24. ; LOCATE "string"        Reads the screen until the string appears, then moves 
  25. ;                        the cursor to the start of the string.
  26. ; LOOK "string"          Test to see if the string was on the screen at the 
  27. ;                        time the screen was last read.  Screen reads occur
  28. ;                        during execution of READ, SEARCH, WAITSCR and WAITFOR 
  29. ;                        commands.  Sets "Y/N" condition.
  30. ; NOINT9                 Stops initiating interrupt 9 when putting a key in
  31. ;                        the buffer.  Used only if problems occur with key
  32. ;                        recognition or key order.
  33. ; ON n label             Command will do nothing n times and on pass n+1, it
  34. ;                        will branch to label.
  35. ; PAUSE                  Causes the script to be paused as if Scroll Lock were
  36. ;                        pressed.
  37. ; QUIT [n]               Halt processing the script file.
  38. ;                        End-of-file on the script file issues an automatic
  39. ;                        QUIT.
  40. ;                        If n is specified, that value (0-255) is returned  
  41. ;                        as the DOS ERRORLEVEL.  Otherwise, the return code
  42. ;                        of the spawned program is returned.
  43. ; READ                   Read the current screen contents.
  44. ; SCRMAX cols rows       Specifies the largest screen size that will be used       
  45. ;                        during execution.  Used to allocate screen buffer.
  46. ; SEARCH "string"        Read screen and test to see if the string is on the 
  47. ;                        screen. Sets "Y/N" condition.
  48. ; SETWAIT nnn            Wait nnn seconds before a WAITFOR or WAITSCR times
  49. ;                        out.
  50. ; SHOW attr "string"     Display the string using the specified attribute.
  51. ;                        Displays at the location specified in SHOWAT.
  52. ; SHOWAT col row         Specifies location for subsequent SHOW command
  53. ;                        strings to be displayed.
  54. ; SHOWIN attr            Rewrite the current window text in the specified
  55. ;                        attribute.
  56. ; SLOW [n]               Use only if problems occur in key recognition or
  57. ;                        key order.  Mostly effective for slower CPUs.  Slows
  58. ;                        key entry.
  59. ; TICK n                 Same as DELAY except n represents 1/18th of a second
  60. ;                        instead of a second.
  61. ; TIME hhmmss            Pause execution of subsequent commands until the               
  62. ;   
  63. ;                        specified time of day.
  64. ; TIMEOUT label          Branch to label when the next WAITFOR or WAITSCR
  65. ;                        timeout occurs.
  66. ; TYPE "string"          Type the ASCII string.
  67. ; TYPFILE filespec [mnemonic]      
  68. ;                        Type the contents of the specified file.  Replace
  69. ;                        CR/LFs with specified mnemonic.
  70. ; WAITFOR [NOT] "string" Wait until the string appears on the screen.  If NOT
  71. ;                        specified, wait until string is not on screen.
  72. ; WAITSCR                Wait until anything changes on the screen.
  73. ; WINCOLS start end      Limit screen reads and SHOWIN to the screen columns
  74. ;                        specified.
  75. ; WINMAX                 Remove row and column restraints imposed by WINCOLS
  76. ;                        and WINROWS.  Subsequent reads read the full screen.
  77. ; WINROWS start end      Limit screen reads and SHOWIN to the screen rows
  78. ;                        specified.
  79. ; :label                 Define a label.
  80. ;
  81.